home *** CD-ROM | disk | FTP | other *** search
/ Aminet 45 / Aminet 45 (2001)(GTI - Schatztruhe)[!][Oct 2001].iso / Aminet / game / role / ldmud-3.2-bin.lha / mud / doc / efun / remove_call_out < prev    next >
Text File  |  2001-04-06  |  577b  |  22 lines

  1. SYNOPSIS
  2.         int remove_call_out(string fun)
  3.         int remove_call_out(closure fun)
  4.  
  5. DESCRIPTION
  6.         Remove next pending call-out for function fun in this object.
  7.         The time left is returned.
  8.         
  9.         -1 is returned if there were no call-outs pending to this
  10.         function.
  11.  
  12. EXAMPLE
  13.         To remove every pending call-out to MyTimer() :
  14.  
  15.         while (remove_call_out("MyTimer") != -1) /* continue */ ;
  16.  
  17. HISTORY
  18.         Removing a call_out to a closure was introduced in 3.2.1@45.
  19.  
  20. SEE ALSO
  21.         call_out(E), call_out_info(E), find_call_out(E)
  22.